home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / COMPNENT / ISAMEXPT / ISAMEXPT.ZIP / EDIT_REG.PAS < prev    next >
Pascal/Delphi Source File  |  1996-04-05  |  216b  |  16 lines

  1. unit Edit_reg;
  2.  
  3. interface
  4. Uses Classes, NumCtrl, DateEdit;
  5.  
  6. Procedure Register;
  7.  
  8. implementation
  9.  
  10. procedure Register;
  11. begin
  12.   RegisterComponents ('Standard', [TNumEdit,TStrEdit,TDateEdit]);
  13. end;
  14.  
  15. end.
  16.